home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Programming Tools / Modula 2-menus / Sample.MOD < prev    next >
Encoding:
Text File  |  1987-06-11  |  5.6 KB  |  167 lines  |  [TEXT/ttxt]

  1.  
  2. (*$T+,$F+*)
  3.  
  4. (*-------------------------------------------------------------*)
  5. (*                    >>> SAMPLE PROGRAM <<<                   *)
  6. (*-------------------------------------------------------------*)
  7. (*                                                             *)
  8. (*  This is an example program which shows just how EASY it    *)
  9. (*  is to set up your own menu system by using EasyMenus.     *)
  10. (*                                                             *)
  11. (*  J.A. Pillera, June 1987                                    *)
  12. (*-------------------------------------------------------------*)
  13.  
  14. MODULE Sample;
  15.  
  16.  
  17. FROM EasyMenus IMPORT AppendToMenu, CheckMenuItem, CreateMenu,
  18.                       HandleDA, HandleEdit, Line, MenuEnableStatus,
  19.                       MenuItemStyle, NoKey, SetItemEnable,
  20.                       SetMenuEnable, SetUpFontMenu, UpdateMenuBar,
  21.                       UserEvent;
  22.                       
  23. FROM InOut IMPORT WriteString, WriteInt, WriteLn;
  24.  
  25. VAR
  26.  (* Sample-program varaibles *)
  27.  MenuItem, MenuBar, LastChecked : INTEGER;
  28.  InDA : BOOLEAN;
  29.  
  30. (* Use my EASY function calls to set up an elaborate menu! *)
  31. PROCEDURE MakeMyMenus;
  32.  
  33.   BEGIN (* MakeMyMenus *)
  34.     (* NOTE: The Desk Accessory Menu takes the ID #1! *)
  35.     (* File Menu *)
  36.     CreateMenu(2,"File");
  37.     AppendToMenu(2,"New",NoKey,normal);
  38.     AppendToMenu(2,"Open",'O',normal);
  39.     AppendToMenu(2,"Close",NoKey,normal);
  40.     AppendToMenu(2,"Save",'S',normal);
  41.     AppendToMenu(2,"Print",'P',normal);
  42.     AppendToMenu(2,Line,NoKey,normal);
  43.     AppendToMenu(2,"Enable  Status Menu",NoKey,normal);
  44.     AppendToMenu(2,"Disable Status Menu",NoKey,normal);
  45.     AppendToMenu(2,Line,NoKey,normal);
  46.     AppendToMenu(2,"Quit",'Q',normal);
  47.    
  48.     (* APPEND to edit menu *)
  49.     AppendToMenu(3,Line,NoKey,normal); 
  50.     AppendToMenu(3,"Select All",NoKey,normal); 
  51.   
  52.     (* Format Menu *)
  53.     CreateMenu(4,"Format");
  54.     AppendToMenu(4,"Normal",NoKey,normal);
  55.     AppendToMenu(4,"Bold",NoKey,bold);
  56.     AppendToMenu(4,"Italic",NoKey,italic);
  57.     AppendToMenu(4,"Underline",NoKey,underline);
  58.     AppendToMenu(4,"Outline",NoKey,outline);
  59.     AppendToMenu(4,"Shadow",NoKey,shadow); 
  60.   
  61.     (* Set up the Font Menu! *)
  62.     SetUpFontMenu;
  63.     
  64.     (* Special Menu *)
  65.     CreateMenu(6,"Special");
  66.     AppendToMenu(6,"Enabled",'E',normal);
  67.     AppendToMenu(6,"Disabled",'D',normal); 
  68.     SetItemEnable(6,2,disabled);
  69.     AppendToMenu(6,Line,NoKey,normal);
  70.     AppendToMenu(6,"Checked",NoKey,normal);
  71.     CheckMenuItem(6,4,TRUE); 
  72.     AppendToMenu(6,"Unchecked",NoKey,normal); 
  73.  
  74.     (* Disabled/Enabled Menu *)
  75.     CreateMenu(7,"Status");
  76.     AppendToMenu(7,"Menu Item 1",NoKey,normal);
  77.     AppendToMenu(7,"Menu Item 2",NoKey,normal);
  78.     AppendToMenu(7,"Menu Item 3",NoKey,normal);
  79.     AppendToMenu(7,"Menu Item 4",NoKey,normal);
  80.     AppendToMenu(7,Line,NoKey,normal);
  81.     AppendToMenu(7,"Menu Item 5",NoKey,normal);
  82.     AppendToMenu(7,"Menu Item 6",NoKey,normal); 
  83.   
  84.     (* Now kill the Status Menu *)
  85.     SetMenuEnable(7,disabled); 
  86.   
  87.     (* Draw the menu bar *)
  88.     UpdateMenuBar;
  89.   END MakeMyMenus;  
  90.   
  91. BEGIN (* Main *)
  92.   (* This is a sample main program to show how easy it is to *)
  93.   (* use EasyMenus  in your application.                     *)
  94.   MakeMyMenus;
  95.   LastChecked := 0; (* For playing around with the Font Menu *)
  96.   (* Suppress output while in a DA! *)
  97.   InDA := FALSE;
  98.   (* Test the menu system *)
  99.   WriteLn; 
  100.   WriteString("Entering menu test . . ."); 
  101.   WriteLn; WriteLn;
  102.   LOOP
  103.   
  104.    (* See if the user selected a menu item with the mouse or *)
  105.    (* by using the Command Key.  If so, process the request. *)
  106.    IF UserEvent(MenuBar,MenuItem) THEN
  107.    
  108.      (* Disable output while in DAs *)
  109.      IF MenuBar > 1 THEN
  110.        InDA := FALSE;
  111.      END;
  112.      
  113.      (* Output where the mouse-down or key-down occured *)
  114.      IF NOT(InDA) THEN
  115.        WriteLn;
  116.        WriteString("Menu Bar  = "); WriteInt(MenuBar,3); WriteLn;
  117.        WriteString("Menu Item = "); WriteInt(MenuItem,3); WriteLn;
  118.      END;
  119.      
  120.      (* Handle a Desk Accessory event.                        *)
  121.      (* NOTE!  This is for illustrative purposes only.  To do *)
  122.      (*        a good job, you should disable your menu items *)
  123.      (*        that don't apply for desk accessories.  This   *)
  124.      (*        is why I notify you of a DA event before       *)
  125.      (*        processing it!                                 *)
  126.      IF MenuBar = 1 THEN
  127.        InDA := TRUE;
  128.        HandleDA(MenuItem);
  129.      END;
  130.      
  131.      (* These IF statements show how to enable/disable menus! *)
  132.      (* Enable or Disable the Status Menu *)
  133.      IF (MenuBar = 2) AND (MenuItem = 7) THEN
  134.        WriteString("Enabling the Status Menu!"); WriteLn;
  135.        SetMenuEnable(7,enabled);
  136.      END;
  137.      IF (MenuBar = 2) AND (MenuItem = 8) THEN
  138.        WriteString("Disabling the Status Menu!"); WriteLn;
  139.        SetMenuEnable(7,disabled);
  140.      END; 
  141.      
  142.      (* These IF statements play around with check marks *)
  143.      (* in the Font Menu!                                *)
  144.      IF MenuBar = 5 THEN
  145.        (* Do we have a previous item to uncheck? *)
  146.        IF LastChecked = 0 THEN
  147.          (* This is the very first check mark *)
  148.          CheckMenuItem(MenuBar,MenuItem,TRUE);
  149.          LastChecked := MenuItem;
  150.        ELSE
  151.          (* Uncheck the previous check first!      *)
  152.          CheckMenuItem(MenuBar,LastChecked,FALSE);
  153.          (* Now place a check next to the new item *)
  154.          CheckMenuItem(MenuBar,MenuItem,TRUE);
  155.          LastChecked := MenuItem;
  156.        END;
  157.      END;
  158.      
  159.      (* See if quit was selected! *)
  160.      IF (MenuBar = 2) AND (MenuItem = 10) THEN
  161.        WriteLn; WriteString("Bye Bye!");
  162.        EXIT;
  163.      END;
  164.     END;
  165.   END;
  166. END Sample.
  167.